home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / ISSUE23 / STARTUP / StubExe.dpr < prev    next >
Text File  |  1996-03-20  |  299b  |  15 lines

  1. program StubExe;
  2.  
  3. uses
  4.   WinProcs,
  5.   Forms,
  6.   StubExeU in 'stubexeu.pas' {Form1};
  7.  
  8. {$R *.RES}
  9. begin
  10.   OutputDebugString('APP: Beginning of project source'#13#10);
  11.   Application.CreateForm(TForm1, Form1);
  12.   Application.Run;
  13.   OutputDebugString('APP: End of project source'#13#10);
  14. end.
  15.